/* General Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.service-details {
  padding: 40px 0;
}

.service-details__tabs {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.toggle-tab {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.toggle-tab:hover {
  background-color: #0056b3;
}

.toggle-tab.active {
  background-color: #0056b3;
}

.toggle-content {
  display: none;
  margin-top: 20px;
}

.toggle-content.active {
  display: block;
}

.service-details__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-details__table th, .service-details__table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.service-details__table th {
  background-color: #007bff;
  color: white;
}

.service-details__table tr:hover {
  background-color: #f1f1f1;
}

@media (max-width: 768px) {
  .service-details__tabs {
      flex-direction: column;
      align-items: center;
  }

  .toggle-tab {
      width: 100%;
      margin-bottom: 10px;
  }

  .service-details__table th, .service-details__table td {
      padding: 10px;
  }
}

.service-details__sidebar {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-details__service-list {
  list-style-type: none;
  padding: 0;
}

.service-details__service-list li {
  padding: 10px 0;
}

.service-details__service-list a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 10px;
  transition: background-color 0.3s ease;
}

.service-details__service-list a:hover {
  background-color: #007bff;
  color: white;
}

.service-details__sidebar-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.service-details__img-one img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-details__points {
  padding: 0;
  margin: 20px 0;
}

.service-details__points li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-details__points .icon {
  margin-right: 10px;
}

.service-details__points .icon i {
  color: #28a745;
  font-size: 18px;
}

.service-details__points .text p {
  margin: 0;
}



/* General Styling for the Request Quote Page */
.request__quote {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.request__quote .request__quote-item {
  margin-bottom: 20px;
}

.request__quote label {
  font-weight: bold;
  color: #333;
  font-size: 14px;
}

.request__quote input, .request__quote textarea {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 14px;
  margin-top: 5px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.request__quote input:focus, .request__quote textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.ag-canvas {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  align-items: center;

  position: relative;
  visibility: visible;

  width: 100%;
  height: 100%;
  padding: 3rem 1rem;
  opacity: 1;
  transition: opacity 0.5s;

  z-index: 10;
  margin-top: -90px;
}
.ag-canvas_svg {
  padding-bottom: 20px;
  display: block;
  width: 80%;
  height: auto;
  max-height: 100%;
  margin-left: 1rem;
}
.ag-canvas_svg path {
  fill: #383d46;
  fill-opacity: 1;
  stroke: #21252b;
  stroke-opacity: 1;
  stroke-width: 0.5;
  transition: 0.5s;
}


        path {
    pointer-events: auto;
    cursor: pointer;
    z-index: 10;
    position: relative;
}

@media screen and (max-width: 767px) {
  .ag-canvas {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    height: auto;
    padding: 4rem 1rem 1rem;
  }
  .ag-canvas_svg {
    max-height: calc(100% - 6rem);
    margin-left: 0;
  }
}


.ag-canvas {
            width: 100%;
            max-width: 1000px;
            margin: auto;
            position: relative;
        }


        #tooltip {
    position: absolute;
    display: none;
    background-color: rgba(0, 0, 0, 0.9); /* Darker background for better contrast */
    color: white;
    padding: 12px 16px; /* Add more padding for a spacious feel */
    border-radius: 8px; /* Slightly larger border radius for smoother corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    z-index: 1000;
    pointer-events: none; /* Prevent mouse events from interfering */
    white-space: nowrap; /* Prevent text wrapping */
    font-size: 14px; /* Larger font size for readability */
    line-height: 1.5; /* Increase line height for better spacing */
    transition: opacity 0.2s ease; /* Smooth transition effect */
    opacity: 0; /* Start with opacity 0 for fade effect */
}

#tooltip.visible {
    display: block; /* Show tooltip when visible class is added */
    opacity: 1; /* Fade in effect */
}


        /* Links in the tooltip */
        #tooltip a {
            color: #ff6347;       /* Color for links inside tooltip */
            text-decoration: none;
        }

        #tooltip a:hover {
            text-decoration: underline;
        }

        

/* Styling for Checkboxes and Radio Buttons */
/* .request__quote-services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Adjust gap between checkboxes */
/* } */

.request__quote-services label {
  font-size: 14px;
  display: inline-flex; /* Ensures that the label stays on one line with the checkbox */
  align-items: center;
  margin-bottom: 10px;
}

.request__quote-services input {
  margin-right: 10px; /* Space between the checkbox and the label */
}

/* Remove wrapping in case of long label text */
.request__quote-services label {
  white-space: nowrap; /* Ensures that the text stays on one line */
}

/* Button Styling */
.btn-one {
  background-color: #007bff;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-one:hover {
  background-color: #007bff;
}

.btn-one:active {
  transform: scale(0.98);
}

/* Responsive Design for Smaller Screens */
@media (max-width: 767px) {
  .request__quote-item {
      margin-bottom: 15px;
  }

  .request__quote .request__quote-item input, .request__quote .request__quote-item textarea {
      padding: 10px;
  }

  .request__quote-services label {
      font-size: 13px;
  }

  .btn-one {
      width: 100%;
      padding: 15px;
  }

  .description {
      font-size: 12px;
  }
}

@media (max-width: 480px) {
  .request__quote .row {
      flex-direction: column;
  }

  .request__quote .col-md-6 {
      width: 100%;
  }

  .request__quote-services {
      margin-bottom: 20px;
  }
}

/* Container for checkbox items */
.request__quote-services {
  display: flex;          /* Using flexbox to make the checkboxes align horizontally */
  flex-wrap: wrap;        /* Allow wrapping, but it will wrap only when necessary */
  gap: 20px;              /* Add space between checkboxes */
  justify-content: flex-start;  /* Align items to the left */
}

/* Label styling for better visual alignment */
.request__quote-services label {

  margin-right: 15px;
  align-content: stretch;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: baseline;
}


/* Ensure checkboxes don't exceed their parent container width */
.request__quote-services input[type="checkbox"] {
  margin-right: 5px;      /* Adjust space between checkbox and label text */
}

/* Responsive for smaller screens */
@media (max-width: 767px) {
  .request__quote-services {
      flex-direction: column;  /* Stack the checkboxes vertically on smaller screens */
      align-items: flex-start;
  }

  .request__quote-services label {
      margin-bottom: 10px;  /* Space between labels when stacked */
  }

}
/* 
@media (min-width: 768px) {
  .col-md-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
  }
} */